翻訳と辞書
Words near each other
・ "O" Is for Outlaw
・ "O"-Jung.Ban.Hap.
・ "Ode-to-Napoleon" hexachord
・ "Oh Yeah!" Live
・ "Our Contemporary" regional art exhibition (Leningrad, 1975)
・ "P" Is for Peril
・ "Pimpernel" Smith
・ "Polish death camp" controversy
・ "Pro knigi" ("About books")
・ "Prosopa" Greek Television Awards
・ "Pussy Cats" Starring the Walkmen
・ "Q" Is for Quarry
・ "R" Is for Ricochet
・ "R" The King (2016 film)
・ "Rags" Ragland
・ ! (album)
・ ! (disambiguation)
・ !!
・ !!!
・ !!! (album)
・ !!Destroy-Oh-Boy!!
・ !Action Pact!
・ !Arriba! La Pachanga
・ !Hero
・ !Hero (album)
・ !Kung language
・ !Oka Tokat
・ !PAUS3
・ !T.O.O.H.!
・ !Women Art Revolution


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

map algebra : ウィキペディア英語版
map algebra
Map algebra is a set-based algebra for manipulating geographic data, proposed by Dr. Dana Tomlin in the early 1980s. It is a set of primitive operations in a geographic information system (GIS) which allows two or more raster layers ("maps") of similar dimensions to produce a new raster layer (map) using algebraic operations such as addition, subtraction etc.
Depending on the spatial neighborhood, GIS transformations are categorized into four classes: ''local'', ''focal'', ''global'', and ''zonal''. Local operations works on individual raster cells, or pixels. Focal operations work on cells and their neighbors, whereas global operations work on the entire layer. Finally, zonal operations work on areas of cells that share the same value. The input and output for each operator being map, the operators can be combined into a procedure or script, to perform complex tasks.
When map algebra is performed in cells from local operations, different types of operations can be used:
-Arithmetic operations uses basic mathematical fuctions like addition, subtraction, multiplication and division.
-Statistical operations uses statistical operations such as minimum, maximum, average and median.
-Relational operations compares cells using functions such as greater than, smaller than or equal to.
-Trigonometric operations uses sine, cosine, tangent, arcsine between two or more raster layers.
-Exponential and logarithmic operations use exponent and logarithm functions.〔(【引用サイトリンク】title=Map Algebra-Global, Zonal, Focal and Local Functions )
Several major GIS systems use map algebra concepts, including ERDAS Imagine and ArcGIS. ArcGIS 10 implements Map Algebra in Python; functions are imported Python methods and Python's overloading capability〔(【引用サイトリンク】url=https://docs.python.org/2/reference/datamodel.html )〕 is used for operators. (For example, rasters can be multiplied using the "
*" arithmetic operator.〔(【引用サイトリンク】first1=Inc. )
Here are some examples, in MapBasic:

# demo for Brown's Pond data set
# Give layers
# altitude
# development – 0: vacant, 1: major, 2: minor, 3: houses, 4: buildings, 5 cement
# water – 0: dry, 2: wet, 3: pond
# calculate the slope at each location based on altitude
slope = IncrementalGradient of altitude
# identify the areas that are too steep
toosteep = LocalRating of slope
where 1 replaces 4 5 6
where VOID replaces ...
# create layer unifying water and development
occupied = LocalRating of development
where water replaces VOID
notbad = LocalRating of occupied and toosteep
where 1 replaces VOID and VOID
where VOID replaces ... and ...
roads = LocalRating of development
where 1 replaces 1 2
where VOID replaces ...
nearread = FocalNeighbor of roads at 0 ... 10
aspect = IncrementalAspect of altitude
southface = LocalRating of aspect
where 1 replaces 135 ... 225
where VOID replaces ...
sites = LocalMinimum of nearroad and southface and notbad
sitenums = FocalInsularity of sites at 0 ... 1
sitesize = ZonalSum of 1 within sitenums
bestsites = LocalRating of sitesize
where sitesize replaces 100 ... 300
where VOID replaces ...

==External links ==

* (osGeo-RFC-39 about Layer Algebra )

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「map algebra」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.